home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / pt20pc.zip / STRINGS.C < prev    next >
C/C++ Source or Header  |  1991-02-04  |  3KB  |  110 lines

  1. #include "pt.h"
  2.  
  3. /* copyright message */
  4. static unsigned char *copyRightString =
  5. "(C) Copyright 1989 Charles Crowley d/b/a Lemma Systems 505-265-1188";
  6.  
  7. /* sign-on message */
  8. unsigned char *copyRightMsg =
  9. "Point Editor Version 2.00h Copyright 1989 Charles Crowley. All Rights Reserved";
  10.  
  11. /* USER MESSAGES */
  12. /* XTAG:userMessages */
  13. unsigned char *userMessages[] = {
  14.  
  15. /* NOT USED -- MESSAGE 0 */
  16. "",
  17.  
  18. /* HANDLEMSG */
  19. "Out of file handles. Cannot open file. Increase FILES=xx in \"config.sys\"",
  20.  
  21. /* FULLMSG */
  22. "DISK FULL!  Write file with a new name to another diskette. [Press any key]",
  23.  
  24. /* MENUSPMSG */
  25. "Out of menu space.  Reduce the size of your menus.\r\n",
  26.  
  27. /* NOSPACEMSG */
  28. "Cannot allocate enough memory for this feature. [Press any key to continue]",
  29.  
  30. /* LOWSPACEMSG */
  31. "Editing space is low. Save files immediately. [Press any key to continue]",
  32.  
  33. /* OUTOFWINDOWS */
  34. "Out of window structures [Press any key to continue]",
  35.  
  36. /* NOBUFFERMEMORY */
  37. "NOT ENOUGH MEMORY! (%u bytes short) Use fewer buffers\r\n",
  38.  
  39. /* OUTOFFILESTRUCT */
  40. "openFile: out of file structures",
  41.  
  42. /* CANNOTOPEN */
  43. "Cannot open %s",
  44.  
  45. /* READONLYFILE */
  46. "File «%s» is read only",
  47.  
  48. /* WRITINGFILE */
  49. "Writing file «%s» [%ld characters]...",
  50.  
  51. /* CLOSEFAILED */
  52. "saveFile: close of «%s» failed, ret=%d",
  53.  
  54. /* RENAMEFAILED */
  55. "Rename of backup of «%s» to «%s» failed, new version in «%s»",
  56.  
  57. /* DELETEFAILED */
  58. "Delete of old version of «%s» failed; new version in «%s»",
  59.  
  60. /* RENAMEFAILED2 */
  61. "Rename of «%s»[new version] to «%s»[old version] failed",
  62.  
  63. /* WRITECANCELLED */
  64. "Write file cancelled",
  65.  
  66. /* FILEEXISTS */
  67. "File «%s» exists, write over it? (y/n)",
  68.  
  69. /* XXXXXXXXX */
  70. "",
  71.  
  72. /* FILEWRITTEN */
  73. "File «%s» written...%ld characters",
  74.  
  75. /* WRITEFAILED */
  76. "Target disk door open or read-only [Press any key to continue]",
  77.  
  78. /* CREATEFAILED */
  79. "Could not create «%s», ret=%d [Press any key to continue]",
  80.  
  81. /* WRITEPROGRESS */
  82. "File is %d%% written out",
  83.  
  84. /* WASREADONLY */
  85. "(Esc:cancel, other:no write) «%s» is read only but changed",
  86.  
  87. /* YTOSAVE */
  88. "y to save «%s», n to discard edits: ",
  89.  
  90. /* CLOSECANCELLED */
  91. "Window close and file write cancelled",
  92.  
  93. /* NOTOPEN */
  94. "closeFile: file «%s» is not open",
  95.  
  96. /* CLOSEFAILED2 */
  97. "closeFile: close of «%s» failed, ret=%d",
  98.  
  99. /* REANMEFAILED2 */
  100. "Rename of «%s» to «%s» failed, new version in «%s»",
  101.  
  102. /* DELETEFAILED2 */
  103. "Delete of «%s» failed; new version in «%s»",
  104.  
  105. /* RENAMEFAILED3 */
  106. "Rename of «%s»[new version] to «%s»[old version] failed",
  107.  
  108. }; /* end of USER MESSAGES */
  109.  
  110.